home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / WV Access Speed 1.xpl < prev    next >
Text File  |  2002-04-06  |  1KB  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Microsoft Office\MS Office 2000\Access 2000"
  5. "NAME"="Simultaneous process"
  6. "WARNING"=""
  7. "VERSION"="1.00"
  8. "OSVERSION"=""
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Value :"
  11. "DESCRIPTION 1"="This option allows you to increasee the autorised number of simultaneous process."
  12. "DESCRIPTION 2"="The value should be one of them : 16, 32, etc... (power of 2)"
  13. "DESCRIPTION 3"="(the recommended value is "16")"
  14. "DESCRIPTION 4"="Note: this tweak is recommended if you have a powerful system."
  15. "AUTHOR"="formatman@wanadoo.fr"
  16. "CONTACTURL"="http://formatland.free.fr/"
  17. "COPYRIGHT"="Copyright ⌐ Formatman"
  18. "COMMENT 1"="For more informations, go to http://www.xsetup.net"
  19. "COMMENT 2"="Created by VORMELKER Werner"
  20. "COMMENT 3"="http://formatland.free.fr/"
  21. "COMMENT 4"="formatman@wanadoo.fr"
  22.  
  23. sP="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Jet 3.x\Threads"
  24.  
  25. Sub Plugin_Initialize 
  26.   i=RegReadValue(sP)
  27.   SetUIElement 1,i
  28. End Sub
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  i=GetUIElement(1)
  35.  Call RegWriteValue(sP,i,2)
  36.  Call Restart()
  37. End Sub
  38.  
  39. Sub Plugin_Terminate 
  40. End Sub
  41.